curl --request POST \
--url https://api.sophra.org/api/cortex/documents \
--header 'Content-Type: application/json' \
--data '{
"index": "research-papers",
"document": {
"title": "Example Research Paper",
"content": "This is the main content of the research paper...",
"abstract": "A brief summary of the research paper...",
"authors": [
"John Doe",
"Jane Smith"
],
"tags": [
"AI",
"Machine Learning"
],
"source": "arXiv"
}
}'
{
"success": true,
"data": {
"id": "<string>",
"index": "<string>",
"vectorized": true
}
}
curl --request POST \
--url https://api.sophra.org/api/cortex/documents \
--header 'Content-Type: application/json' \
--data '{
"index": "research-papers",
"document": {
"title": "Example Research Paper",
"content": "This is the main content of the research paper...",
"abstract": "A brief summary of the research paper...",
"authors": [
"John Doe",
"Jane Smith"
],
"tags": [
"AI",
"Machine Learning"
],
"source": "arXiv"
}
}'
{
"success": true,
"data": {
"id": "<string>",
"index": "<string>",
"vectorized": true
}
}
Document created successfully
The response is of type object
.